home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-17 | 1.3 KB | 54 lines | [TEXT/MPS ] |
- ;
- ; File: Packages.a
- ;
- ; Contains: Package Manager Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.2
- ;
- ; Copyright: © 1985-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
- __PACKAGES__ SET 1
-
- IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
- include 'MacTypes.a'
- ENDIF
-
-
- listMgr EQU 0 ; list manager
- dskInit EQU 2 ; Disk Initializaton
- stdFile EQU 3 ; Standard File
- flPoint EQU 4 ; Floating-Point Arithmetic
- trFunc EQU 5 ; Transcendental Functions
- intUtil EQU 6 ; International Utilities
- bdConv EQU 7 ; Binary/Decimal Conversion
- editionMgr EQU 11 ; Edition Manager
- ;
- ; pascal void InitPack(short packID)
- ;
- IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
- _InitPack: OPWORD $A9E5
- ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION InitPack
- ENDIF
-
- ;
- ; pascal void InitAllPacks(void )
- ;
- IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
- _InitAllPacks: OPWORD $A9E6
- ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION InitAllPacks
- ENDIF
-
-
- ENDIF ; __PACKAGES__
-
-